type math/rand.lockedSource

12 uses

	math/rand (current package)
		rand.go#L86: 	if lk, ok := r.src.(*lockedSource); ok {
		rand.go#L274: 	case *lockedSource:
		rand.go#L327: 		r = New(new(lockedSource))
		rand.go#L399: 		if _, ok := orig.src.(*lockedSource); ok {
		rand.go#L412: 	r := New(new(lockedSource))
		rand.go#L498: type lockedSource struct {
		rand.go#L503: func (r *lockedSource) Int63() (n int64) {
		rand.go#L510: func (r *lockedSource) Uint64() (n uint64) {
		rand.go#L517: func (r *lockedSource) Seed(seed int64) {
		rand.go#L524: func (r *lockedSource) seedPos(seed int64, readPos *int8) {
		rand.go#L533: func (r *lockedSource) seed(seed int64) {
		rand.go#L542: func (r *lockedSource) read(p []byte, readVal *int64, readPos *int8) (n int, err error) {